home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / extra / pro13 / toupper.c < prev    next >
C/C++ Source or Header  |  1993-02-01  |  236b  |  17 lines

  1. /*
  2.     toupper.C
  3.  
  4.     Copyright (C) 1993, Geoff Friesen B.Sc.
  5.     All rights reserved.
  6. */
  7.  
  8. #define    INCL_TOUPPER
  9.  
  10. #ifndef    INCL_ISLOWER
  11. #include "islower.C"
  12. #endif
  13.  
  14. int toupper (int ch)
  15. {
  16.    return (islower (ch) ? ch -= 32 : ch);
  17. }